home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / openobex / obex.h < prev   
C/C++ Source or Header  |  2006-01-09  |  5KB  |  138 lines

  1. /*********************************************************************
  2.  *                
  3.  * Filename:      obex.h
  4.  * Version:       0.9.7
  5.  * Description:   OBEX API
  6.  * Status:        Experimental.
  7.  * Author:        Dag Brattli <dagb@cs.uit.no>
  8.  * Created at:    Fri Apr 23 14:02:42 1999
  9.  * CVS ID:        $Id: obex.h,v 1.24 2002/11/15 09:08:54 holtmann Exp $
  10.  * 
  11.  *     Copyright (c) 1999, 2000 Dag Brattli, All Rights Reserved.
  12.  *     
  13.  *     This library is free software; you can redistribute it and/or
  14.  *     modify it under the terms of the GNU Lesser General Public
  15.  *     License as published by the Free Software Foundation; either
  16.  *     version 2 of the License, or (at your option) any later version.
  17.  *
  18.  *     This library is distributed in the hope that it will be useful,
  19.  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  21.  *     Lesser General Public License for more details.
  22.  *
  23.  *     You should have received a copy of the GNU Lesser General Public
  24.  *     License along with this library; if not, write to the Free Software
  25.  *     Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
  26.  *     MA  02111-1307  USA
  27.  *     
  28.  ********************************************************************/
  29.  
  30. #ifndef OBEX_H
  31. #define OBEX_H
  32.  
  33. #include <stdint.h>
  34.  
  35. #ifdef _WIN32
  36. #include <winsock.h>
  37. #else
  38. #include <sys/socket.h>
  39. #endif
  40.  
  41. /* Hum... This would need to be autogenerated from configure,
  42.  * I hate hardcoding version numbers. Jean II */
  43. #define OPENOBEX_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
  44. //#define OPENOBEX_VERSION_CODE    OPENOBEX_VERSION(1,0,0)
  45.  
  46. // These are also defined in obex_main.h
  47. // They are defined here otherwise any app including it
  48. // would require obex_main.h which includes a lot of other 
  49. // unnecessary stuff.
  50. typedef void* obex_t;
  51. typedef void* obex_object_t;
  52. typedef void (*obex_event_t)(obex_t *handle, obex_object_t *obj, int mode, int event, int obex_cmd, int obex_rsp);
  53. // This is to workaround compilation without Bluetooth support. - Jean II
  54. #ifndef SOL_RFCOMM
  55. typedef char* bdaddr_t;
  56. #endif
  57.  
  58. #include "obex_const.h"
  59.  
  60. /*
  61.  *  OBEX API
  62.  */
  63. obex_t *OBEX_Init(int transport, obex_event_t eventcb, unsigned int flags);
  64. void    OBEX_Cleanup(obex_t *self);
  65. void OBEX_SetUserData(obex_t *self, void * data);
  66. void * OBEX_GetUserData(obex_t *self);
  67. void OBEX_SetUserCallBack(obex_t *self, obex_event_t eventcb, void * data);
  68. int OBEX_SetTransportMTU(obex_t *self, uint16_t mtu_rx, uint16_t mtu_tx_max);
  69. int OBEX_GetFD(obex_t *self);
  70.  
  71. int OBEX_RegisterCTransport(obex_t *self, obex_ctrans_t *ctrans);
  72. void OBEX_SetCustomData(obex_t *self, void * data);
  73. void * OBEX_GetCustomData(obex_t *self);
  74.  
  75. int    OBEX_TransportConnect(obex_t *self, struct sockaddr *saddr, int addlen);
  76. int    OBEX_TransportDisconnect(obex_t *self);
  77. int    OBEX_CustomDataFeed(obex_t *self, uint8_t *inputbuf, int actual);
  78. int    OBEX_HandleInput(obex_t *self, int timeout);
  79.  
  80. int    OBEX_ServerRegister(obex_t *self, struct sockaddr *saddr, int addrlen);
  81. obex_t *OBEX_ServerAccept(obex_t *server, obex_event_t eventcb, void * data);
  82. int    OBEX_Request(obex_t *self, obex_object_t *object);
  83. int    OBEX_CancelRequest(obex_t *self, int nice);
  84.  
  85. obex_object_t    *OBEX_ObjectNew(obex_t *self, uint8_t cmd);
  86. int        OBEX_ObjectDelete(obex_t *self, obex_object_t *object);
  87.  
  88. int        OBEX_ObjectAddHeader(obex_t *self, obex_object_t *object, uint8_t hi, 
  89.             obex_headerdata_t hv, uint32_t hv_size, unsigned int flags);
  90. int OBEX_ObjectGetNextHeader(obex_t *self, obex_object_t *object, uint8_t *hi,
  91.                     obex_headerdata_t *hv,
  92.                     uint32_t *hv_size);
  93. int OBEX_ObjectReParseHeaders(obex_t *self, obex_object_t *object);
  94. int OBEX_ObjectSetRsp(obex_object_t *object, uint8_t rsp, uint8_t lastrsp);
  95.  
  96. int OBEX_ObjectGetNonHdrData(obex_object_t *object, uint8_t **buffer);
  97. int OBEX_ObjectSetNonHdrData(obex_object_t *object, const uint8_t *buffer, unsigned int len);
  98. int OBEX_ObjectSetHdrOffset(obex_object_t *object, unsigned int offset);
  99. int OBEX_ObjectReadStream(obex_t *self, obex_object_t *object, const uint8_t **buf);
  100.  
  101. int OBEX_UnicodeToChar(uint8_t *c, const uint8_t *uc, int size);
  102. int OBEX_CharToUnicode(uint8_t *uc, const uint8_t *c, int size);
  103.  
  104. char *OBEX_ResponseToString(int rsp);
  105.  
  106. /*
  107.  * This function is deprecated and will be removed in OpenOBEX 1.1.0
  108.  *
  109.  * Please use the OBEX_ResponseToString instead.
  110.  *
  111.  */
  112. char* OBEX_GetResponseMessage(obex_t *self, int rsp);
  113.  
  114. /*
  115.  * InOBEX API (TCP/IP)
  116.  */
  117.  int InOBEX_ServerRegister(obex_t *self);
  118.  int InOBEX_TransportConnect(obex_t *self, struct sockaddr *saddr, int addrlen);
  119.  
  120. /*
  121.  * IrOBEX API 
  122.  */
  123.  int IrOBEX_ServerRegister(obex_t *self, const char *service);
  124.  int IrOBEX_TransportConnect(obex_t *self, const char *service);
  125.  
  126. /*
  127.  * Bluetooth OBEX API
  128.  */
  129.  int BtOBEX_ServerRegister(obex_t *self, bdaddr_t *src, uint8_t channel);
  130.  int BtOBEX_TransportConnect(obex_t *self, bdaddr_t *src, bdaddr_t *dst, uint8_t channel);
  131.  
  132. /*
  133.  * OBEX File API
  134.  */
  135. int FdOBEX_TransportSetup(obex_t *self, int rfd, int wfd, int mtu);
  136.  
  137. #endif
  138.